runtime.g.stktopsp (field)

9 uses

	runtime (current package)
		proc.go#L2121: 	gp.stktopsp = gp.sched.sp
		proc.go#L4529: 	newg.stktopsp = sp
		runtime2.go#L432: 	stktopsp  uintptr // expected sp at top of stack, to check in traceback
		signal_unix.go#L482: 		gp.m.gsignal.stktopsp = getcallersp()
		signal_unix.go#L1328: 		old.stktopsp = gp.m.gsignal.stktopsp
		signal_unix.go#L1347: 	gp.stktopsp = st.stktopsp
		stack.go#L930: 	gp.stktopsp += adjinfo.delta
		traceback.go#L568: 	if u.flags&(unwindPrintErrors|unwindSilentErrors) == 0 && u.frame.sp != gp.stktopsp {
		traceback.go#L569: 		print("runtime: g", gp.goid, ": frame.sp=", hex(u.frame.sp), " top=", hex(gp.stktopsp), "\n")